OpenStack Ocata : Configure Neutron#1
2017/03/12 |
Configure OpenStack Network Service (Neutron).
This example is based on the emvironment like follows.
eth0|10.0.0.30 +-----------+-----------+ | [ Control Node ] | | | | MariaDB RabbitMQ | | Memcached httpd | | Keystone Glance | | Nova API | +-----------------------+ |
[1] | Add user or service for Neutron on Keystone Server. |
# add neutron user (set in service project) root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword neutron +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | 708e2280c8504ef29c418fd46b8b4cca | | domain_id | default | | enabled | True | | id | 57a47665df0440b1840d234889927f38 | | name | neutron | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add neutron user in admin role root@dlp ~(keystone)# openstack role add --project service --user neutron admin
# add service entry for neutron root@dlp ~(keystone)# openstack service create --name neutron --description "OpenStack Networking service" network +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Networking service | | enabled | True | | id | 6a0b27b08dd54633935aecc2edcfca19 | | name | neutron | | type | network | +-------------+----------------------------------+ # define keystone host root@dlp ~(keystone)# export controller=10.0.0.30
# add endpoint for neutron (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne network public http://$controller:9696 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 2800b040957b4a8b90af9f477e4ac3a9 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 6a0b27b08dd54633935aecc2edcfca19 | | service_name | neutron | | service_type | network | | url | http://10.0.0.30:9696 | +--------------+----------------------------------+ # add endpoint for neutron (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne network internal http://$controller:9696 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 009b7c38d26f46ad8323bda6ae88aa12 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 6a0b27b08dd54633935aecc2edcfca19 | | service_name | neutron | | service_type | network | | url | http://10.0.0.30:9696 | +--------------+----------------------------------+ # add endpoint for neutron (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne network admin http://$controller:9696 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | e4fce8c07b73453ab9499c12b3916e38 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 6a0b27b08dd54633935aecc2edcfca19 | | service_name | neutron | | service_type | network | | url | http://10.0.0.30:9696 | +--------------+----------------------------------+ |
[2] | Add a User and Database on MariaDB for Neutron. |
root@dlp ~(keystone)# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 94 Server version: 10.0.29-MariaDB-0ubuntu0.16.04.1 Ubuntu 16.04 Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
create database neutron_ml2; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on neutron_ml2.* to neutron@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on neutron_ml2.* to neutron@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |